Platform Explorer / Nuxeo Platform 6.0

Extension point oooManagerConfig

Documentation

This extension point defines the port numbers or the pipe names used to connect to open office. Only the last register contribution will be taken into account.

    <OOoManager>
        <portNumbers>
            <portNumber>2003</portNumber>
            <portNumber>2004</portNumber>
            <portNumber>2005</portNumber>
        </portNumbers>
        <pipeNames>
            <pipeName>pipe1</pipeName>
            <pipeName>pipe2</pipeName>
            <pipeName>pipe3</pipeName>
        </pipeNames>
    </OOoManager>

Contribution Descriptors

  • Class: org.nuxeo.ecm.platform.convert.ooomanager.OOoManagerDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-runtime-6.0.jar
    <extension point="oooManagerConfig" target="org.nuxeo.ecm.platform.convert.ooomanager.OOoManagerComponent">
    <!-- configuration example -->
        <OOoManager>
    
          <!-- Define the different ports to use with Socket connection. -->
          <!-- Default configuration uses the two following ports: -->
          <portNumbers>
            <portNumber>2003</portNumber>
          </portNumbers>
    
          <!-- Define the different pipe names to use with Pipe connection. -->
    <!--  <pipeNames>
            <pipeName>pipe1</pipeName>
            <pipeName>pipe2</pipeName>
            <pipeName>pipe3</pipeName>
          </pipeNames>
    -->
        </OOoManager>
      </extension>